/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Text color */
    line-height: 1.6;
  }
  
  /* Section padding and margin */
  #academics-contact {
    padding: 60px 0;
    background-color: #ffffff; /* White background for the section */
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  /* Heading Styles */
  #academics-contact h2 {
    color: #007bff; /* Bootstrap primary color */
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  #academics-contact p {
    color: #555;
    font-size: 1.1rem;
  }
  
  /* Card Styles */
  .card {
    border: none; /* Remove default card border */
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px); /* Lift on hover */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
  }
  
  .card h5 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .card-text {
    color: #666;
  }
  
  .card p {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  /* Button and Links (if needed) */
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #academics-contact {
      padding: 30px 10px;
    }
    #academics-contact h2 {
      font-size: 1.5rem;
    }
    .card {
      margin-bottom: 20px;
    }
  }
  